Returns a numeric value of string according to the ASCII value.
Number ascii - the number variable containing the
ASCII value.
String return - a string variable to contain the character-equivalent.
Useful for scripting a sorting algorithm.
function main() {
Var:Number nVal=65;
Var:String sVal;
Konsol:Chr(nVal, sVal) //if nVal has a value of 65 then sVal will have a value of 'A'
if (nVal LT 70) {
//code---
}
}